home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / var / lib / dpkg / info / bash-completion.postrm < prev    next >
Encoding:
Text File  |  2009-02-05  |  257 b   |  20 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. case "$1" in
  6.     purge)
  7.     rm -f /etc/bash_completion
  8.     ;;
  9.     remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
  10.     ;;
  11.     *)
  12.         echo "postrm called with unknown argument \`$1'" >&2
  13.         exit 1
  14.     ;;
  15. esac
  16.  
  17.  
  18.  
  19. exit 0
  20.